home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / share / pyshared / PIL / DcxImagePlugin.py < prev    next >
Text File  |  2006-12-03  |  2KB  |  79 lines

  1. #
  2. # The Python Imaging Library.
  3. # $Id: DcxImagePlugin.py 2134 2004-10-06 08:55:20Z fredrik $
  4. #
  5. # DCX file handling
  6. #
  7. # DCX is a container file format defined by Intel, commonly used
  8. # for fax applications.  Each DCX file consists of a directory
  9. # (a list of file offsets) followed by a set of (usually 1-bit)
  10. # PCX files.
  11. #
  12. # History:
  13. # 1995-09-09 fl   Created
  14. # 1996-03-20 fl   Properly derived from PcxImageFile.
  15. # 1998-07-15 fl   Renamed offset attribute to avoid name clash
  16. # 2002-07-30 fl   Fixed file handling
  17. #
  18. # Copyright (c) 1997-98 by Secret Labs AB.
  19. # Copyright (c) 1995-96 by Fredrik Lundh.
  20. #
  21. # See the README file for information on usage and redistribution.
  22. #
  23.  
  24. __version__ = "0.2"
  25.  
  26. import Image, ImageFile
  27.  
  28. from PcxImagePlugin import PcxImageFile
  29.  
  30. MAGIC = 0x3ADE68B1 # QUIZ: what's this value, then?
  31.  
  32. def i32(c):
  33.     return ord(c[0]) + (ord(c[1])<<8) + (ord(c[2])<<16) + (ord(c[3])<<24)
  34.  
  35. def _accept(prefix):
  36.     return i32(prefix) == MAGIC
  37.  
  38. ##
  39. # Image plugin for the Intel DCX format.
  40.  
  41. class DcxImageFile(PcxImageFile):
  42.  
  43.     format = "DCX"
  44.     format_description = "Intel DCX"
  45.  
  46.     def _open(self):
  47.  
  48.         # Header
  49.         s = self.fp.read(4)
  50.         if i32(s) != MAGIC:
  51.             raise SyntaxError, "not a DCX file"
  52.  
  53.         # Component directory
  54.         self._offset = []
  55.         for i in range(1024):
  56.             offset = i32(self.fp.read(4))
  57.             if not offset:
  58.                 break
  59.             self._offset.append(offset)
  60.  
  61.         self.__fp = self.fp
  62.         self.seek(0)
  63.  
  64.     def seek(self, frame):
  65.         if frame >= len(self._offset):
  66.             raise EOFError("attempt to seek outside DCX directory")
  67.         self.frame = frame
  68.         self.fp = self.__fp
  69.         self.fp.seek(self._offset[frame])
  70.         PcxImageFile._open(self)
  71.  
  72.     def tell(self):
  73.         return self.frame
  74.  
  75.  
  76. Image.register_open("DCX", DcxImageFile, _accept)
  77.  
  78. Image.register_extension("DCX", ".dcx")
  79.